Mega Code Archive

Categories
1) Android
2) ASP.Net
3) ASP.Net Tutorial
4) C
5) C Tutorial
6) C#
7) C# Book
8) C# by API
9) C# Tutorial
10) C++
11) C++ Tutorial
12) Delphi
13) Flash ActionScript
14) Flex
15) Java
16) Java Book
17) Java by API
18) Java Tutorial
19) JavaScript DHTML
20) JavaScript Reference
21) JavaScript Tutorial
22) MSOfficeExcel 2007 Tutorial
23) MSOfficePowerPoint 2007 Tutorial
24) MSOfficeWord 2007 Tutorial
25) MSSQL
26) MSSQL Tutorial
27) MySQL
28) MySQL Tutorial
29) Oracle PLSQL
30) Oracle PLSQL Tutorial
31) Perl
32) Php
33) PostgreSQL
34) Python
35) Python Tutorial
36) Ruby
37) Silverlight
38) VB.Net
39) VB.Net by API
40) VB.Net Tutorial
41) Visual C++ .NET
42) VisualBasic Script
43) XML
44) XML Tutorial
 
MySQL Tutorial
1) Aggregate Functions
2) Cast Functions Operators
3) Comparison Functions Operators
4) Control Flow Functions
5) Cursor
6) Data Dictionary
7) Data Types
8) Database
9) Date Time Functions
10) Encryption Compression Functions
11) Information Functions
12) Insert Update Delete
13) Introduction
14) Logic Operator
15) Math Numeric Functions
16) Miscellaneous Functions
17) MySQL Utilities
18) Privilege
19) Procedure Function
20) Regular Expressions
21) Select Query
22) String Functions
23) Subquery
24) Table
25) Table Join
26) Trigger
27) View
Encryption Compression Functions
1) AES_DECRYPT(crypt_str,key_str)
2) AES_ENCRYPT(str,key_str)
3) COMPRESS(string_to_compress) compresses a string and returns the result as a binary string
4) DECODE(crypt_str,pass_str) decrypts the encrypted string crypt_str using pass_str
5) DES_DECRYPT(crypt_str[,key_str]) (Decrypts a string encrypted with DES_ENCRYPT() )
6) ENCODE(str,pass_str) (Encrypt str using pass_str as the password )
7) ENCRYPT(str[,salt]) encrypts str using the Unix crypt() system call
8) Encryption and Compression Functions
9) MD5(str) calculates an MD5 128-bit checksum for the string
10) OLD_PASSWORD(str)
11) SELECT LENGTH(COMPRESS())
12) SELECT LENGTH(COMPRESS(a))
13) SELECT LENGTH(COMPRESS(REPEAT(a,16)))
14) SHA1(str), SHA(str) calculates an SHA-1 160-bit checksum for the string
15) UNCOMPRESS(string_to_uncompress) uncompresses a string compressed by the COMPRESS() function
16) Use CRC32 with column data
17) Use ENCRYPT function to ENCRYPT first name
18) Use password function to ENCRYPT first name
19) Using AES_ENCRYPT to ENCRYPT the first name
20) Using MD5 function to ENCRYPT first name
21) Using old_password to ENCRYPT the first name
22) Using the SHA function with first name